home *** CD-ROM | disk | FTP | other *** search
/ Aminet 40 / Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso / Aminet / dev / lang / Python16_Src.lha / Python16_Source / Python / getcopyright.c < prev    next >
Encoding:
C/C++ Source or Header  |  2000-09-04  |  348 b   |  16 lines

  1. /* Return the copyright string.  This is updated manually. */
  2.  
  3. #include "Python.h"
  4.  
  5. static char cprt[] = 
  6. "Copyright (c) 1995-2000 Corporation for National Research Initiatives.\n\
  7. All Rights Reserved.\n\
  8. Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam.\n\
  9. All Rights Reserved.";
  10.  
  11. const char *
  12. Py_GetCopyright()
  13. {
  14.     return cprt;
  15. }
  16.